home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsindex.c < prev    next >
C/C++ Source or Header  |  2004-05-09  |  15KB  |  490 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsindex.c                                             */
  34. /*       keyword indexing system (search index)                 */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. /* Internal engine bytecode */
  39. #define HTS_INTERNAL_BYTECODE
  40.  
  41.  
  42. #include "htsindex.h"
  43. #include "htsglobal.h"
  44. #include "htslib.h"
  45.  
  46. #if HTS_MAKE_KEYWORD_INDEX
  47. #include "htshash.h"
  48. #include "htsinthash.h"
  49.  
  50.  
  51. /* Keyword Indexer Parameters */
  52.  
  53. // Maximum length for a keyword
  54. #define KEYW_LEN             50
  55. // Minimum length for a keyword - MUST NOT BE NULL!!!
  56. #define KEYW_MIN_LEN         3
  57. // What characters to accept? - MUST NOT BE EMPTY AND MUST NOT CONTAIN THE SPACE (32) CHARACTER!!!
  58. #define KEYW_ACCEPT          "abcdefghijklmnopqrstuvwxyz0123456789-_."
  59. // Convert A to a, and so on.. to avoid case problems in indexing
  60. // This can be a generic table, containing characters that are in fact not accepted by KEYW_ACCEPT
  61. // MUST HAVE SAME SIZES!!
  62. #define KEYW_TRANSCODE_FROM  (\
  63.                                "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \
  64.                                "αΓΣ" \
  65.                                "└┬─" \
  66.                                "ΘΦΩδ" \
  67.                                "╚╚╩╦" \
  68.                                "∞ε∩" \
  69.                                "╠╬╧" \
  70.                                "≥⌠÷" \
  71.                                "╥╘╓" \
  72.                                "∙√ⁿ" \
  73.                                "┘█▄" \
  74.                                " " \
  75.                              )
  76. #define KEYW_TRANSCODE_TO    ( \
  77.                                "abcdefghijklmnopqrstuvwxyz" \
  78.                                "aaa" \
  79.                                "aaa" \
  80.                                "eeee" \
  81.                                "eeee" \
  82.                                "iii" \
  83.                                "iii" \
  84.                                "ooo" \
  85.                                "ooo" \
  86.                                "uuu" \
  87.                                "uuu" \
  88.                                "y" \
  89.                              )
  90. // These (accepted) characters will be ignored at begining of a keyword
  91. #define KEYW_IGNORE_BEG       "-_."
  92. // These (accepted) characters will be stripped if at the end of a keyword
  93. #define KEYW_STRIP_END       "-_."
  94. // Words begining with these (accepted) characters will be ignored
  95. #define KEYW_NOT_BEG         "0123456789"
  96. // Treat these characters as space characters - MUST NOT BE EMPTY!!!
  97. #define KEYW_SPACE           " ',;:!?\"\x0d\x0a\x09\x0b\x0c"
  98. // Common words (the,for..) detector
  99. // If a word represents more than KEYW_USELESS1K (%1000) of total words, then ignore it
  100. // 5 (0.5%)
  101. #define KEYW_USELESS1K       5
  102. // If a word is present in more than KEYW_USELESS1KPG (%1000) pages, then ignore it
  103. // 800 (80%)
  104. #define KEYW_USELESS1KPG     800
  105. // This number will be reduced by index hit for sorting purpose
  106. // leave it as it is here if you don't REALLY know what you are doing
  107. // Yes, I may be the only person, maybe
  108. #define KEYW_SORT_MAXCOUNT 999999999
  109.  
  110. /* End of Keyword Indexer Parameters */
  111.  
  112. int strcpos(char* adr,char c);
  113. int mystrcmp(const void* _e1,const void* _e2);
  114.  
  115. // Global variables
  116. int hts_index_init=1;
  117. int hts_primindex_size=0;
  118. FILE* fp_tmpproject=NULL;
  119. int hts_primindex_words=0;
  120.  
  121. #endif
  122.  
  123. /* 
  124.   Init index 
  125. */
  126. void index_init(const char* indexpath) {
  127. #if HTS_MAKE_KEYWORD_INDEX
  128. #ifndef _WIN32_WCE
  129.   /* remove(concat(indexpath,"index.txt")); */
  130.   hts_index_init=1;
  131.   hts_primindex_size=0;
  132.   hts_primindex_words=0;
  133.   fp_tmpproject=tmpfile();
  134. #endif
  135. #endif
  136. }
  137.  
  138.  
  139. /* 
  140.    Indexing system
  141.    A little bit dirty, (quick'n dirty, in fact)
  142.    But should be okay on most cases
  143.    Tags and javascript handled (ignored)
  144. */
  145. int index_keyword(const char* html_data,LLint size,const char* mime,const char* filename,const char* indexpath) {
  146. #if HTS_MAKE_KEYWORD_INDEX
  147.   int intag=0,inscript=0,incomment=0;
  148.   char keyword[KEYW_LEN+32];
  149.   int i=0;
  150.   //
  151.   int WordIndexSize=1024;
  152.   inthash WordIndexHash=NULL;
  153.   FILE *tmpfp=NULL;
  154.   //
  155.  
  156.   // Check parameters
  157.   if (!html_data)
  158.     return 0;
  159.   if (!size)
  160.     return 0;
  161.   if (!mime)
  162.     return 0;
  163.   if (!filename)
  164.     return 0;
  165.  
  166.   // Init ?
  167.   if (hts_index_init) {
  168.     remove(concat(indexpath,"index.txt"));
  169.     remove(concat(indexpath,"sindex.html"));
  170.     hts_index_init=0;
  171.   }
  172.  
  173.   // Check MIME type
  174.   if (strfield2(mime,"text/html")) {
  175.     inscript=0;
  176.   } 
  177.   // FIXME - temporary fix for image/svg+xml (svg)
  178.   // "IN XML" (html like, in fact :) )
  179.   else if (
  180.     (strfield2(mime,"image/svg+xml"))
  181.     ||
  182.     (strfield2(mime,"image/svg-xml"))
  183.     ) {
  184.     inscript=0;
  185.   }
  186.   else if (
  187.     (strfield2(mime,"application/x-javascript"))
  188.     || (strfield2(mime,"text/css"))
  189.     ) {
  190.     inscript=1;
  191.   //} else if (strfield2(mime, "text/vnd.wap.wml")) {   // humm won't work in many cases
  192.   //  inscript=0;
  193.   } else
  194.     return 0;
  195.  
  196.   // Temporary file
  197.   tmpfp = tmpfile();
  198.   if (!tmpfp)
  199.     return 0;
  200.  
  201.   // Create hash structure
  202.   // Hash tables rulez da world!
  203.   WordIndexHash=inthash_new(WordIndexSize);
  204.   if (!WordIndexHash)
  205.     return 0;
  206.  
  207.   // Start indexing this page
  208.   keyword[0]='\0';
  209.   while(i<size) {
  210.     if (strfield(html_data + i , "<script")) {
  211.       inscript=1;
  212.     } 
  213.     else if (strfield(html_data + i , "<!--")) {
  214.       incomment=1;
  215.     }
  216.     else if (strfield(html_data + i , "</script")) {
  217.       if (!incomment)
  218.         inscript=0;
  219.     } 
  220.     else if (strfield(html_data + i , "-->")) {
  221.       incomment=0;
  222.     }
  223.     else if (html_data[i]=='<') {
  224.       if (!inscript)
  225.         intag=1;
  226.     }    
  227.     else if (html_data[i]=='>') {
  228.       intag=0;
  229.     }    
  230.     else {    
  231.       // Okay, parse keywords
  232.       if ( (!inscript) && (!incomment) && (!intag) ) {
  233.         char cchar=html_data[i];
  234.         int pos;
  235.         int len=strlen(keyword);
  236.         
  237.         // Replace (ignore case, and so on..)
  238.         if ((pos=strcpos(KEYW_TRANSCODE_FROM,cchar))>=0)
  239.           cchar=KEYW_TRANSCODE_TO[pos];
  240.         
  241.         if (strchr(KEYW_ACCEPT,cchar)) {
  242.           /* Ignore some characters at begining */
  243.           if ((len>0) || (!strchr(KEYW_IGNORE_BEG,cchar))) {
  244.             keyword[len++]=cchar;
  245.             keyword[len]='\0';
  246.           }
  247.         } else if ( (strchr(KEYW_SPACE,cchar)) || (!cchar) ) {
  248.  
  249.  
  250.           /* Avoid these words */
  251.           if (len>0) {
  252.             if (strchr(KEYW_NOT_BEG,keyword[0])) {
  253.               keyword[(len=0)]='\0';
  254.             }
  255.           }
  256.  
  257.           /* Strip ending . and so */
  258.           {
  259.             int ok=0;
  260.             while((len=strlen(keyword)) && (!ok)) {
  261.               if (strchr(KEYW_STRIP_END,keyword[len-1])) {      /* strip it */
  262.                 keyword[len-1]='\0';
  263.               } else
  264.                 ok=1;
  265.             }
  266.           }
  267.           
  268.           /* Store it ? */
  269.           if (len >= KEYW_MIN_LEN ) {
  270.             hts_primindex_words++;
  271.             if (inthash_inc(WordIndexHash,keyword)) {   /* added new */
  272.               fprintf(tmpfp,"%s\n",keyword);
  273.             }
  274.           }
  275.           keyword[(len=0)]='\0';
  276.         } else      /* Invalid */
  277.           keyword[(len=0)]='\0';
  278.  
  279.         if (len>KEYW_LEN) {
  280.           keyword[(len=0)]='\0';
  281.         }
  282.       }
  283.       
  284.     }
  285.     
  286.     i++;
  287.   }
  288.  
  289.   // Reset temp file
  290.   fseek(tmpfp,0,SEEK_SET);
  291.  
  292.   // Process indexing for this page
  293.   {
  294.     //FILE* fp=NULL;
  295.     //fp=fopen(concat(indexpath,"index.txt"),"ab");
  296.     if (fp_tmpproject) {
  297.       while(!feof(tmpfp)) {
  298.         char line[KEYW_LEN + 32];
  299.         linput(tmpfp,line,KEYW_LEN + 2);
  300.         if (strnotempty(line)) {
  301.           unsigned long int e=0;
  302.           if (inthash_read(WordIndexHash,line,&e)) {
  303.             //if (e) {
  304.             char BIGSTK savelst[HTS_URLMAXSIZE*2];
  305.             e++;          /* 0 means "once" */
  306.             
  307.             if (strncmp((const char*)fslash((char*)indexpath),filename,strlen(indexpath))==0)  // couper
  308.               strcpybuff(savelst,filename+strlen(indexpath));
  309.             else
  310.               strcpybuff(savelst,filename);
  311.             
  312.             // Add entry for this file and word
  313.             fprintf(fp_tmpproject,"%s %d %s\n",line,(int) (KEYW_SORT_MAXCOUNT - e),savelst);
  314.             hts_primindex_size++;
  315.             //}
  316.           }
  317.         }
  318.       }
  319.       //fclose(fp);
  320.     }
  321.   }
  322.  
  323.   // Delete temp file
  324.   fclose(tmpfp);
  325.   tmpfp=NULL;
  326.  
  327.   // Clear hash table
  328.   inthash_delete(&WordIndexHash);
  329. #endif
  330.   return 1;
  331. }
  332.  
  333. /*
  334.   Sort index!
  335. */
  336. void index_finish(const char* indexpath,int mode) {
  337. #if HTS_MAKE_KEYWORD_INDEX
  338.   char** tab;
  339.   char* blk;
  340.   INTsys size;
  341.   
  342.   size=fpsize(fp_tmpproject);
  343.   if (size>0) {
  344.     //FILE* fp=fopen(concat(indexpath,"index.txt"),"rb");
  345.     if (fp_tmpproject) {
  346.       tab=(char**)malloct(sizeof(char*) * (hts_primindex_size+2) );
  347.       if (tab) {
  348.         blk = malloct(size+4);
  349.         if (blk) {
  350.           fseek(fp_tmpproject,0,SEEK_SET);
  351.           if ((INTsys)fread(blk,1,size,fp_tmpproject) == size) {
  352.             char *a=blk,*b;
  353.             int index=0;
  354.             int i;
  355.             FILE* fp;
  356.  
  357.             while( (b=strchr(a,'\n')) && (index < hts_primindex_size) ) {
  358.               tab[index++]=a;
  359.               *b='\0';
  360.               a=b+1;
  361.             }
  362.             
  363.             // Sort it!
  364.             qsort(tab,index,sizeof(char*),mystrcmp);
  365.  
  366.             // Delete fp_tmpproject
  367.             fclose(fp_tmpproject);
  368.             fp_tmpproject=NULL;
  369.  
  370.             // Write new file
  371.             if (mode == 1)      // TEXT
  372.               fp=fopen(concat(indexpath,"index.txt"),"wb");
  373.             else                // HTML
  374.               fp=fopen(concat(indexpath,"sindex.html"),"wb");
  375.             if (fp) {
  376.               char current_word[KEYW_LEN + 32];
  377.               char word[KEYW_LEN + 32];
  378.               int hit;
  379.               int total_hit=0;
  380.               int total_line=0;
  381.               int last_pos=0;
  382.               char word0='\0';
  383.               current_word[0]='\0';
  384.  
  385.               if (mode == 2) {         // HTML
  386.                 for(i=0;i<index;i++) {
  387.                   if (word0 != tab[i][0]) {
  388.                     word0 = tab[i][0];
  389.                     fprintf(fp," <a href=\"#%c\">%c</a>\r\n",word0,word0);
  390.                   }
  391.                 }
  392.                 word0='\0';
  393.                 fprintf(fp,"<br><br>\r\n");
  394.                 fprintf(fp,"<table width=\"100%%\" border=\"0\">\r\n<tr>\r\n<td>word</td>\r\n<td>location\r\n");
  395.               }
  396.  
  397.               for(i=0;i<index;i++) {
  398.                 if (sscanf(tab[i],"%s %d",word,&hit) == 2) {
  399.                   char*  a=strchr(tab[i],' ');
  400.                   if (a) a=strchr(a+1,' ');
  401.                   if (a++) {                            /* Yes, a++, not ++a :) */
  402.                     hit=KEYW_SORT_MAXCOUNT-hit;
  403.                     if (strcmp(word,current_word)) {    /* New word */
  404.                       if (total_hit) {
  405.                         if (mode == 1)      // TEXT
  406.                           fprintf(fp,"\t=%d\r\n",total_hit);
  407.                         //else                // HTML
  408.                         //  fprintf(fp,"<br>(%d total hits)\r\n",total_hit);
  409.                         if ( 
  410.                               ( ((total_hit*1000 ) / hts_primindex_words) >= KEYW_USELESS1K   )
  411.                             ||
  412.                               ( ((total_line*1000) / index              ) >= KEYW_USELESS1KPG )
  413.                           ) {
  414.                           fseek(fp,last_pos,SEEK_SET);
  415.                           if (mode == 1)      // TEXT
  416.                             fprintf(fp,"\tignored (%d)\r\n",((total_hit*1000)/hts_primindex_words));
  417.                           else
  418.                             fprintf(fp,"(ignored) [%d hits]<br>\r\n",total_hit);
  419.                         }
  420.                         else {
  421.                           if (mode == 1)      // TEXT
  422.                             fprintf(fp,"\t(%d)\r\n",((total_hit*1000)/hts_primindex_words));
  423.                           //else                // HTML
  424.                           //  fprintf(fp,"(%d)\r\n",((total_hit*1000)/hts_primindex_words));
  425.                         }
  426.                       }
  427.                       if (mode == 1)      // TEXT
  428.                         fprintf(fp,"%s\r\n",word);
  429.                       else {              // HTML
  430.                         fprintf(fp,"</td></tr>\r\n");
  431.                         if (word0 != word[0]) {
  432.                           word0 = word[0];
  433.                           fprintf(fp,"<th>%c</th>\r\n",word0);
  434.                           fprintf(fp,"<a name=\"%c\"></a>\r\n",word0);
  435.                         }
  436.                         fprintf(fp,"<tr>\r\n<td>%s</td>\r\n<td>\r\n",word);
  437.                       }
  438.                       fflush(fp); last_pos=ftell(fp);
  439.                       strcpybuff(current_word,word);
  440.                       total_hit=total_line=0;
  441.                     }
  442.                     total_hit+=hit;
  443.                     total_line++;
  444.                     if (mode == 1)      // TEXT
  445.                       fprintf(fp,"\t%d %s\r\n",hit,a);
  446.                     else                // HTML
  447.                       fprintf(fp,"<a href=\"%s\">%s</a> [%d hits]<br>\r\n",a,a,hit);
  448.                   }
  449.                 }
  450.               }
  451.               if (mode == 2)         // HTML
  452.                 fprintf(fp,"</td></tr>\r\n</table>\r\n");
  453.               fclose(fp);
  454.             }
  455.             
  456.           }
  457.           freet(blk);
  458.         }
  459.         freet(tab);
  460.       }
  461.  
  462.     }
  463.     //qsort
  464.   }
  465.   if (fp_tmpproject)
  466.     fclose(fp_tmpproject);
  467.   fp_tmpproject=NULL;
  468. #endif
  469. }
  470.  
  471.  
  472. /* Subroutines */
  473.  
  474. #if HTS_MAKE_KEYWORD_INDEX
  475. int strcpos(char* adr,char c) {
  476.   char* apos=strchr(adr,c);
  477.   if (apos)
  478.     return (int)(apos-adr);
  479.   else
  480.     return -1;
  481. }
  482.  
  483. int mystrcmp(const void* _e1,const void* _e2) {
  484.   char** e1=(char**)_e1;
  485.   char** e2=(char**)_e2;
  486.   return strcmp(*e1,*e2);
  487. }
  488. #endif
  489.  
  490.